Müzik Player Buton Yerleşimi
Merhabalar bi tane müzik player yaptım. İçerisinde 4 tane buton var: "Geri Sar, Durdur, Başlat, İleri Sar"
Fakat ne yaptıysam yapayım bu butonları bazı telefonlarda düzgün gösteremiyorum. RelativeLayout içene koydum ve ortaladım yine de küçük boyutlu telefonlarda butonlar ekrana sığmıyor herhalde ki üst üste geliyor. Android sitesindeki hazır butonları kullanıyorum yine aynı sonuç.
İşte bunlar da kodlarım :
[code]
<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_centerInParent="true"
android:gravity="center"
android:layout_marginBottom="81dp" >
<Button
android:id="@+id/rewind"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/btn_back"
android:onClick="rewind" />
<Button
android:id="@+id/pause"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@+id/rewind"
android:background="@color/btn_durdur"
android:onClick="pause" />
<Button
android:id="@+id/play"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@+id/pause"
android:background="@color/btn_baslat"
android:onClick="play" />
<Button
android:id="@+id/forward"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toEndOf="@+id/play"
android:background="@color/btn_next"
android:onClick="forward" />
</RelativeLayout>
[/code]